home *** CD-ROM | disk | FTP | other *** search
/ Windows News 2007 June/July / Windows News Hors série Numéro 34 juin juillet 2007.iso / Rédaction / Astuces Windows XP / registre.vbs < prev    next >
Encoding:
Text File  |  2006-12-28  |  296 b   |  8 lines

  1. Set WshShell = CreateObject("WScript.Shell")
  2. Dim MyKey
  3. MyKey = Inputbox("Entrez la clΘ complΦte")
  4. MyKey = "My Computer\" & MyKey
  5. WshShell.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Applets\Regedit\Lastkey",MyKey,"REG_SZ"
  6. WshShell.Run "regedit", 1,True
  7. Set WshShell = Nothing
  8.